home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gsbittab.h < prev    next >
C/C++ Source or Header  |  1995-06-23  |  2KB  |  51 lines

  1. /* Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsbittab.h */
  20. /* Interface to tables for bit operations */
  21.  
  22. /*
  23.  * byte_reverse_bits[B] = the byte B with the order of bits reversed.
  24.  */
  25. extern const byte byte_reverse_bits[256];
  26.  
  27. /*
  28.  * byte_right_mask[N] = a byte with N trailing 1s, 0 <= N <= 8.
  29.  */
  30. extern const byte byte_right_mask[9];
  31.  
  32. /*
  33.  * byte_bit_run_length_N[B], for 0 <= N <= 7, gives the length of the
  34.  * run of 1-bits starting at bit N in a byte with value B,
  35.  * numbering the bits in the byte as 01234567.  If the run includes
  36.  * the low-order bit (i.e., might be continued into a following byte),
  37.  * the run length is increased by 8.
  38.  */
  39. extern const byte
  40.   byte_bit_run_length_0[256], byte_bit_run_length_1[256],
  41.   byte_bit_run_length_2[256], byte_bit_run_length_3[256],
  42.   byte_bit_run_length_4[256], byte_bit_run_length_5[256],
  43.   byte_bit_run_length_6[256], byte_bit_run_length_7[256];
  44.  
  45. /*
  46.  * byte_bit_run_length[N] points to byte_bit_run_length_N.
  47.  * byte_bit_run_length_neg[N] = byte_bit_run_length[-N & 7].
  48.  */
  49. extern const byte *byte_bit_run_length[8];
  50. extern const byte *byte_bit_run_length_neg[8];
  51.